home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / graphics / tierra40.arj / ALMOND / ALCOMM / INC / MREQUEST.H < prev    next >
C/C++ Source or Header  |  1992-07-06  |  868b  |  42 lines

  1. /*
  2. * mrequest.h
  3. *
  4. *
  5. * Copyright (c) 1991, 1992 by Marc W. Cygnus and Virtual Life
  6. * All Rights Reserved.
  7. *
  8. */
  9.  
  10. #ifndef __MREQUEST_H
  11. #define __MREQUEST_H
  12.  
  13. #define    MrPRIVATE        0x01
  14. #define    MrERROR            0x02
  15. #define    MrMessage        0x03
  16. #define    MrQuery            0x04
  17. #define    MrQueryReply        0x05
  18. #define    MrQueryError        0x06
  19. #define    MrModifyDataflow    0x07
  20. #define    MrDataflowEvent        0x08
  21.  
  22. /*** MrPrivate: **************************************************************/
  23.  
  24. #define    MrtSetSendWin        0x00
  25. #define    MrtAckSetSendWin    0x01
  26. #define    MrtUpdateSendWin    0x02
  27.  
  28. /*** MrtSetSendWin,    ***/
  29. /*** MrtUpdateSendWin: ***/
  30.  
  31. typedef struct _m_sendwindow {
  32.  
  33.   int        iUpdate;
  34.  
  35. } MtSendWindow, * pMtSendWindow;
  36.  
  37. /*** MrERROR: ****************************************************************/
  38.  
  39. /* no MrERRORs defined yet; may not be used... */
  40.  
  41. #endif  /* ifndef __MREQUEST_H; Add nothing past this point */
  42.